GDK_AVAILABLE_IN_ALL was missing from gdk_toplevel_size_get_bounds and
gdk_toplevel_size_set_max_size was declared though it doesn't exist.
G_BEGIN_DECLS
/**
- * GdkTopLevelSize:
+ * GdkToplevelSize:
*
* Struct containing information for computing the size of a #GdkToplevel.
*/
GDK_AVAILABLE_IN_ALL
GType gdk_toplevel_size_get_type (void);
+GDK_AVAILABLE_IN_ALL
void gdk_toplevel_size_get_bounds (GdkToplevelSize *size,
int *bounds_width,
int *bounds_height);
void gdk_toplevel_size_set_min_size (GdkToplevelSize *size,
int min_width,
int min_height);
-GDK_AVAILABLE_IN_ALL
-void gdk_toplevel_size_set_max_size (GdkToplevelSize *size,
- int max_width,
- int max_height);
G_END_DECLS